@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.body,html{
    scroll-behavior: smooth;
}


.banner-tect-separador{
margin-bottom: 10px;
}

.container__all{
    position: relative;
    right: 0;
    transition: all 300ms;
}

header{
    width: 100%;
    height: 100px;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all 300ms;
}


.move_content{
    right: 180px;
}

.container__header{
    max-width: 1100px;
    height: 100%;  
    display: flex;
    justify-content: space-between; 
    margin: auto;
    padding: 0px 30px;
}
.moreinfo{
    background-color: #080807;
}
/*logo del header*/
header .logo{
    
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
  
}

.logo img{
    width: 130px;
    
    
}
.logo img{
    width: 140px;
    
    
}

.container__nav{
    position: relative;
    height: 100%;
}

nav{
    height: 100%;
   
}

nav ul{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li{
    margin: 0px 20px;
    list-style: none;
}

nav ul li a{
    color: #868686;
    font-size: 14px;
    text-decoration:none;
}

/*boton home*/
.select{
    background: #f9bb35;
    padding: 10px 30px;
    color: white;
    border-radius: 20px;
}
.select:hover{
    color: #f9bb35;
    border: #f9bb35;
    background-color: #ffffff;
    
}

.nav_mod{
    height: 70px;
    margin: 0%;
    box-shadow: 1px 1px 10px 0px #000000;
    background: rgb(255, 255, 255);
}

.btn__menu{
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #f9bb35;
    transition: background 500ms;
    display: none;
}

.btn__menu:hover{
    background: #000000;
}

/*COVER*/

.cover{
    background-color: rgb(255, 255, 255);
    align-items: center;
    font-family: 'Poppins', sans-serif;
    
}



.cover .container__info{
    max-width: 400px; 
    z-index: 4;
    text-align: center;
 
}

.cover h1{
    max-width: 400px;
    font-size: 80px;
    font-weight: 900;
    color: #373737;
    text-align: center;
}

.cover h2{
    font-size: 35px;
    font-weight: 800;
    color: #FEBA0B;
   
    text-align: center;

}

.cover p{
    margin-top: 10px;
    color: #373737;
}

.cover input[type="sutmit"]{
    padding: 10px 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: #FEBA0B;
    border-radius: 20px;
    cursor: pointer;
    transition: box-shadow 500ms;
}

.cover input[type="sutmit"]:hover{
    text-align: center;
   
    background-color:#ffffff;
    color:#FEBA0B
}


.container__vector{
    position: relative;
}

.container__vector img{
    position: absolute;
    bottom: 10px;
    right: 0px;
    width: 600px;
    animation: move_vector 6s ease-in-out infinite;
    transition: all 300ms;
}

@keyframes move_vector {
    0%{
        transform: translateY(10px);
    }
    25%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(10px);
    }
}

@media screen and (max-width: 920px){
    .container__vector img{
        width: 500px;
    }
   
}

@media screen and (max-width: 1080px){
   
   
}


@media screen and (max-width: 800px){
    
}


    
@media screen and (max-width: 800px){

    .container__nav{
        display: flex;
        justify-content: center;
        align-items: center;
        
    }

    .btn__menu{
        display: flex;
     
    }

    nav{
        height: 100%;
        background: #F1FAFF;
        position: fixed;
        top: 0;
        right: -180px;
        padding: 0 40px;
        transition: all 300ms;
    }

    .move_nav{
        right: 0px;
        background-color: #ffffff;
    }

    nav ul{
        flex-direction: column;
    }

    nav ul li{
        margin: 20px 0px;
    }

    .container__vector img{
        transform: scale(0);
        animation: none;
    }
    .cover h1{
        max-width: 400px;
        font-size: 50px;
        font-weight: 900;
        color: #373737;
        text-align: center;
    }
    .cover h2{
        font-size: 20px;
    }
    .logo img{
        width: 100px;
        
        
    }
    .logo img:hover{
        width: 100px;
        
        
    }
  
   
}



@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

:root{
    --color-esqueleto:#EFF3F5;
}


.container__article{
    max-width: 1000px;
    padding: 0px 20px;
    margin: auto;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container__article .box__article{
    width: 200px;
    height: 250px;
    background: var(--color-esqueleto);
    margin: 20px;
}


